-- card: 4837 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 3203 -- name: -- part 1 (field) -- low flags: 01 -- high flags: 0000 -- rect: left=126 top=54 right=283 bottom=454 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 14 -- style flags: 8192 -- line height: 18 -- part name: -- part 2 (button) -- low flags: 00 -- high flags: A004 -- rect: left=270 top=246 right=296 bottom=404 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: Test FileName ----- HyperTalk script ----- on mouseUp get FileName() if it is empty then put "user cancelled" into message box else put it into message box end if end mouseUp -- part contents for background part 6 ----- text ----- 4 of 8 -- part contents for card part 1 ----- text ----- FileName( ) A typical script for this would be     on mouseUp       put FileName( "TEXT" ) into sourcefile       if sourcefile is not empty then         open file sourcefile         -- read text from source file         close file sourcefile       end if     end mouseUp